翻訳と辞書
Words near each other
・ Wirtschaftsdienst
・ Wirtschaftsgeschichte
・ Wirtschaftsgymnasium
・ Wiri
・ Wiri Baker
・ Wiri Lava Cave
・ Wiri Railway Station
・ Wiriagar River
・ Wirich Philipp von Daun
・ Wirich VI, Count of Daun-Falkenstein
・ Wirich von Gartzen
・ Wirick-Simmons House
・ Wiriehorn
・ Wirikuta
・ Wirimai Juwawo
Wiring (development platform)
・ Wiring closet
・ Wiring diagram
・ Wiring Harness Manufacturer's Association
・ Wiring party
・ Wiring pencil
・ Wiriná language
・ WIRIS
・ WIRJ
・ Wirjono Prodjodikoro
・ WIRK
・ Wirki
・ Wirki, Lower Silesian Voivodeship
・ Wirklich alles!
・ Wirkowice Drugie


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Wiring (development platform) : ウィキペディア英語版
Wiring (development platform)

Wiring is an open-source electronics prototyping platform composed of a programming language, an integrated development environment (IDE), and a single-board microcontroller. It was developed starting in 2003 by Hernando Barragán.
Barragán started the project at the Interaction Design Institute Ivrea. The project is currently developed at the School of Architecture and Design at the Universidad de Los Andes in Bogotá, Colombia.
Wiring builds on Processing, an open project initiated by Casey Reas and Benjamin Fry, both formerly of the Aesthetics and Computation Group at the MIT Media Lab.
The documentation has been created thoughtfully, with designers and artists in mind. There is a community where experts, intermediate developers and beginners from around the world share ideas, knowledge and their collective experience. Wiring allows writing software to control devices attached to the electronics board to create all kinds of interactive objects, spaces or physical experiences feeling and responding in the physical world. The idea is to write a few lines of code, connect a few electronic components to the Wiring hardware and observe how a light turns on when person approaches it, write a few more lines, add another sensor, and see how this light changes when the illumination level in a room decreases. This process is called sketching with hardware; explore lots of ideas very quickly, select the more interesting ones, refine and produce prototypes in an iterative process.
== Software ==
The Wiring IDE is a cross-platform application written in Java which is derived from the IDE made for the Processing programming language. It is designed to introduce programming and sketching with electronics to artists and designers. It includes a code editor with features such as syntax highlighting, brace matching, and automatic indentation capable of compiling and uploading programs to the board with a single click.
The Wiring IDE comes with a C/C++ library called "Wiring", which makes common input/output operations much easier. Wiring programs are written in C/C++, although users only need to define two functions to make a runnable program:
* setup() – a function run once at the start of a program which can be used to define initial environment settings
* loop() – a function called repeatedly until the board is powered off
A typical first program for a microcontroller is to simply blink an LED (light-emitting diode) on and off. In the Wiring environment, the user might write a program like this:

int ledPin = WLED; // a name for the on-board LED
void setup ()
void loop ()

When the user clicks the "Upload to Wiring hardware" button in the IDE, a copy of the code is written to a temporary file with an extra include header at the top and a very simple main() function at the bottom, to make it a valid C++ program.
The Wiring IDE uses the GNU toolchain and AVR Libc to compile programs, and uses avrdude to upload programs to the board.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Wiring (development platform)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.